aboutsummaryrefslogtreecommitdiff
path: root/src/routes/user/[user]/+page.gql
blob: 491290aabee1cda42030ed20e57698da0f6cb623 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query Profile($id: Int!) {
  User(id: $id) {
    id
    badgesCount

    preferences {
      created_at
      updated_at
      user_id
      pinned_hololive_streams
      hide_missing_badges
      biography
      badge_wall_css
      hide_awc_badges
      pinned_badge_wall_categories
    }
  }
}